Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632542 Views

Latest files of /cody/solygambas/html-css-javascript-projects/100-hulu webpage clone

style.css cody/solygambas/html-css-javascript-projects/100-hulu webpage clone/style.css
138 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;700&display=swap");

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

index.html cody/solygambas/html-css-javascript-projects/100-hulu webpage clone/index.html
328 Views
0 Comments
<!-- Based on Hulu Webpage Clone | HTML & CSS by Brad Traversy (2021)
see: https://www.youtube.com/watch?v=9OVLaEjY-Rc -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
script.js cody/solygambas/html-css-javascript-projects/100-hulu webpage clone/script.js
202 Views
0 Comments
const modal = document.querySelector(".modal");
const loginButton = document.querySelector(".login-btn");
const closeButton = document.querySelector(".close");

const openModal = () => (modal.style.display = "block");
const closeModal = () => (modal.style.display = "none");
const outsideClick = (e) => {
if (e.target == modal) {